summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFernando S <fsahmkow27@gmail.com>2022-10-31 00:58:07 +0100
committerGitHub <noreply@github.com>2022-10-31 00:58:07 +0100
commitd8ff939edcf5b9eb1ae30c22b38e91a3788fcd07 (patch)
tree885092435651e8d327e4876f2a8ced44b86381e9
parentMerge pull request #9151 from liamwhite/dram-size (diff)
parentk_thread: fix single core (diff)
downloadyuzu-d8ff939edcf5b9eb1ae30c22b38e91a3788fcd07.tar
yuzu-d8ff939edcf5b9eb1ae30c22b38e91a3788fcd07.tar.gz
yuzu-d8ff939edcf5b9eb1ae30c22b38e91a3788fcd07.tar.bz2
yuzu-d8ff939edcf5b9eb1ae30c22b38e91a3788fcd07.tar.lz
yuzu-d8ff939edcf5b9eb1ae30c22b38e91a3788fcd07.tar.xz
yuzu-d8ff939edcf5b9eb1ae30c22b38e91a3788fcd07.tar.zst
yuzu-d8ff939edcf5b9eb1ae30c22b38e91a3788fcd07.zip
-rw-r--r--src/core/hle/kernel/k_thread.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_thread.cpp b/src/core/hle/kernel/k_thread.cpp
index d57b42fdf..cc88d08f0 100644
--- a/src/core/hle/kernel/k_thread.cpp
+++ b/src/core/hle/kernel/k_thread.cpp
@@ -1185,8 +1185,10 @@ void KThread::RequestDummyThreadWait() {
}
void KThread::DummyThreadBeginWait() {
- ASSERT(this->IsDummyThread());
- ASSERT(!kernel.IsPhantomModeForSingleCore());
+ if (!this->IsDummyThread() || kernel.IsPhantomModeForSingleCore()) {
+ // Occurs in single core mode.
+ return;
+ }
// Block until runnable is no longer false.
dummy_thread_runnable.wait(false);